(C) 1996 AROS - The Amiga Replacement OS


NAME
#include <string.h>
char * strcat()
SYNOPSIS
char * dest
const char * src

FUNCTION
Concatenates two strings.

INPUTS
dest
src is appended to this string. Make sure that there is enough room for src.
src
This string is appended to dest
RESULT
dest.

NOTES
The routine makes no checks if dest is large enough.

EXAMPLE
char buffer[64];

strcpy (buffer, "Hello ");
strcat (buffer, "World.");

// Buffer now contains "Hello World."

BUGS
SEE ALSO
INTERNALS
HISTORY
11.12.1996 aros
New functions